home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / findfi_1 / form3.frm < prev    next >
Text File  |  1998-08-22  |  1KB  |  42 lines

  1. VERSION 5.00
  2. Begin VB.Form Form3 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "3D Text"
  5.    ClientHeight    =   555
  6.    ClientLeft      =   45
  7.    ClientTop       =   330
  8.    ClientWidth     =   1455
  9.    BeginProperty Font 
  10.       Name            =   "MS Sans Serif"
  11.       Size            =   18
  12.       Charset         =   0
  13.       Weight          =   700
  14.       Underline       =   0   'False
  15.       Italic          =   0   'False
  16.       Strikethrough   =   0   'False
  17.    EndProperty
  18.    Icon            =   "Form3.frx":0000
  19.    LinkTopic       =   "Form3"
  20.    MaxButton       =   0   'False
  21.    MinButton       =   0   'False
  22.    ScaleHeight     =   555
  23.    ScaleWidth      =   1455
  24.    StartUpPosition =   2  'CenterScreen
  25. End
  26. Attribute VB_Name = "Form3"
  27. Attribute VB_GlobalNameSpace = False
  28. Attribute VB_Creatable = False
  29. Attribute VB_PredeclaredId = True
  30. Attribute VB_Exposed = False
  31. Private Sub Form_Activate()
  32. ForeColor = 0: X = CurrentX: Y = CurrentY
  33.                      For I = 25 To 100
  34.                             Print "3D Text"
  35.                             X = X + 1: Y = Y + 1: CurrentX = X: CurrentY = Y
  36.                      Next I
  37.  
  38.  
  39.                      ForeColor = QBColor(9)
  40.                             Print "3D Text"
  41. End Sub
  42.